home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / bgfax160.zip / WWIV.TXT < prev   
Text File  |  1995-08-12  |  3KB  |  55 lines

  1. ┌────────────────────────────────────────────────────────────────────────────┐
  2. │ Mod Name: WWIVFAX.MOD      Mod Author: Jim Russell 1@150306.WWIVnet        │
  3. │ Difficulty: ▓▓░░░░░░░░                 Jim Russell 1@8.expressnet          │
  4. │ WWIV Version: 4.23                                                         │
  5. │ Files Affected: BBS.C YOUR *.MDM FILE                                      │
  6. │ Description: Allows WWIV to receive facsimiles while the BBS is running!   │
  7. ├────────────────────────────────────────────────────────────────────────────┤
  8. │ First Coast Data Exchange BBS ! (904) 246-3993  14.4 w/FAX                 │
  9. │ This mod is the property of Wayne Bell, WWIV Software                      │
  10. └────────────────────────────────────────────────────────────────────────────┘
  11.  
  12. Step 1.
  13.  
  14. Load up BBS.C and search for the following function and modify as noted:
  15.  
  16.  
  17.     if (modem_mode==mode_fax) {
  18.     {                                                          /* Add {  */
  19.       sprintf(s,"\x0c""%s connection at %u... baud\r\n",curspeed,com_speed); /* Exists */
  20.       sysoplog(s);                                             /* Add    */
  21.       sprintf(s,"C:\\WWIV\\FAX.BAT %u",com_speed);             /* Add    */
  22. /* The above line is a hardcoded path to your batch file to
  23.    initiate BGFAX and can be anything you want. */
  24.       shrink_out(s,-1,0,0,1);                                  /* Add    */
  25.     }                                                          /* Add }  */
  26.  /* nothing here yet */
  27.       goto hanging_up;
  28.  
  29. The above path is hard coded to the C:\WWIV directory, which shells and
  30. runs FAX.BAT.
  31.  
  32. Close BBS.C and recompile.
  33.  
  34.  
  35. Step 2. Make a batch file in whatever directory you hardcoded in the above
  36.         code and name it FAX.BAT or whatever you defined.
  37.  
  38. SAMPLE FAX.BAT
  39. -------
  40. Note -If you do not use a fossil driver, then just omit the first and third
  41.       lines below, and use the second line for your batch file. Notice the
  42.       directory path of where you want the incomming files to go to.
  43.  
  44. bnu /l0=0
  45. bgfax /fast c:\fax\ql2faxw\inbox F1 q /ns
  46. bnu /l0=38400
  47.  
  48. Line 1. Unlocks my comm port which was set to 38400, so that BGFAX can shift
  49. the the baud rate to 19200 as depicted in the modem file.
  50.  
  51. Line 2. Runs BGFAX program and passes the /FAST parameter, which is dependant
  52. on individual hardware (Modem / CPU) as stated in the BGFAX documentation.
  53. The path statement points to which directory you want the fax files to end in
  54.  
  55.